1 #COPYRIGHT
2 #Password Generator
3 #written
by Sepehr Mohseni
4
5
6
7
8
9
10 #importing refrences
11 import CreatePasswords
as MyPassword
12
13
14 while
1:
15     userPasswordLength =
int(input("Enter Length For Your Password: \n"))
16     print(MyPassword.GeneratePassword(userPasswordLength))
17     userReply = input(
"Do You Want More? (y,n): ")
18     
if userReply.lower() == "y" :
19         
continue
20     elif userReply.lower() ==
"n":
21         
break
22     


Gõ tìm kiếm nhanh...